about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-14 18:40:31 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-14 18:40:31 +0200
commit7faa8a904208578672160d7b57a4b8df6520581e (patch)
treeec6369cfb54cf932d97228a90a8a41da23feeac5
parent6797ff84ae00d8039aa897d8b713ccdb771cd336 (diff)
downloaddwm-7faa8a904208578672160d7b57a4b8df6520581e.tar.gz
prep 0.1 0.1
-rw-r--r--Makefile2
-rw-r--r--config.mk12
-rw-r--r--dwm.12
-rw-r--r--dwm.html4
4 files changed, 11 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 02bacf5..2b243ef 100644
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ clean:
 
 dist: clean
 	mkdir -p dwm-${VERSION}
-	cp -R Makefile README LICENSE config.mk *.h *.c ${MAN} dwm-${VERSION}
+	cp -R Makefile README LICENSE config.mk *.h *.c ${MAN1} dwm-${VERSION}
 	tar -cf dwm-${VERSION}.tar dwm-${VERSION}
 	gzip dwm-${VERSION}.tar
 	rm -rf dwm-${VERSION}
diff --git a/config.mk b/config.mk
index f32f80e..96ef58a 100644
--- a/config.mk
+++ b/config.mk
@@ -8,18 +8,18 @@ MANPREFIX = ${PREFIX}/share/man
 X11INC = /usr/X11R6/include
 X11LIB = /usr/X11R6/lib
 
-VERSION = 0.0
+VERSION = 0.1
 
 # includes and libs
 LIBS = -L${PREFIX}/lib -L/usr/lib -lc -L${X11LIB} -lX11
 
 # Linux/BSD
-#CFLAGS = -Os -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
-#	-DVERSION=\"${VERSION}\"
-#LDFLAGS = ${LIBS}
-CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
+CFLAGS = -Os -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
 	-DVERSION=\"${VERSION}\"
-LDFLAGS = -g ${LIBS}
+LDFLAGS = ${LIBS}
+#CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
+#	-DVERSION=\"${VERSION}\"
+#LDFLAGS = -g ${LIBS}
 
 
 # Solaris
diff --git a/dwm.1 b/dwm.1
index 9c63b29..047299c 100644
--- a/dwm.1
+++ b/dwm.1
@@ -1,4 +1,4 @@
-.TH DWM 1 dwm-0.0
+.TH DWM 1 dwm-0.1
 .SH NAME
 dwm \- dynamic window manager
 .SH SYNOPSIS
diff --git a/dwm.html b/dwm.html
index 7e39f15..5e31a52 100644
--- a/dwm.html
+++ b/dwm.html
@@ -93,7 +93,9 @@
 		<code>hg clone http://wmii.de/cgi-bin/hgwebdir.cgi/dwm</code>
 		</p>
 		<h3>Download</h3>
-		<p>There is no release yet.</p>
+		<ul>
+			<li><a href="http://wmii.de/download/dwm-0.1.tar.gz">dwm 0.1</a> (12kb) (20060714)</li>
+		</ul>
 		<h3>Miscellaneous</h3>
 		<p>
 		You can purchase this <a href="https://www.spreadshirt.net/shop.php?op=article&article_id=3298632&view=403">tricot</a>
='#n266'>266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413