Skip to content

Instantly share code, notes, and snippets.

@nkundu
nkundu / Makefile
Created March 27, 2025 16:47 — forked from dcommander/Makefile
Simple program to demonstrate OpenGL rendering without an X server
all: egltest
egltest: egltest.c
cc -O3 -Wall -Werror -I. -o $@ $^ -lOpenGL -lEGL
clean:
rm -f *.o egltest
@nkundu
nkundu / touch.bat
Created February 19, 2018 18:38 — forked from tjbarbour/touch.bat
touch.bat Works like bash "touch" command that just updates a file's date modified time. Taken from: http://stackoverflow.com/a/923927/37207 and http://stackoverflow.com/a/659672/37207
@echo OFF
REM Need to be in current directory to touch file
pushd %~dp1
copy /b %1 +,,
popd